home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH05_3.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  1KB  |  56 lines

  1.                              /* Chapter 5 - Program 1 - SUMSQRES.C */
  2. #include "stdio.h"
  3.  
  4. void header(void);
  5. void square(int number);
  6. void ending(void);
  7.  
  8. int sum; /* This is a global variable */
  9.  
  10. void main(void)
  11. {
  12. int index;
  13.  
  14.    header();          /* This calls the function named header */
  15.    for (index = 1 ; index <= 7 ; index++)
  16.       square(index);  /* This calls the square function */
  17.    ending();          /* This calls the ending function */
  18. }
  19.  
  20. void header(void)     /* This is the function named header */
  21. {
  22.    sum = 0;     /* Initialize the variable "sum" */
  23.    printf("This is the header for the square program\n\n");
  24. }
  25.  
  26. void square(int number)   /* This is the square function */
  27. {
  28. int numsq;
  29.  
  30.    numsq = number * number;  /* This produces the square */
  31.    sum += numsq;
  32.    printf("The square of %d is %d\n", number, numsq);
  33. }
  34.  
  35. void ending(void)   /* This is the ending function */
  36. {
  37.    printf("\nThe sum of the squares is %d\n", sum);
  38. }
  39.  
  40.  
  41.  
  42. /* Result of execution
  43.  
  44. This is the header for the square program
  45.  
  46. The square of 1 is 1
  47. The square of 2 is 4
  48. The square of 3 is 9
  49. The square of 4 is 16
  50. The square of 5 is 25
  51. The square of 6 is 36
  52. The square of 7 is 49
  53.  
  54. The sum of the squares is 140
  55.  
  56. */